home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / cron.prerm < prev    next >
Text File  |  2008-09-09  |  166b  |  13 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. if [ -x /etc/init.d/cron ]; then
  5.     if [ -x /usr/sbin/invoke-rc.d ] ; then
  6.            invoke-rc.d cron stop
  7.     else
  8.            /etc/init.d/cron stop
  9.     fi
  10. fi
  11.  
  12.  
  13.